Conversation
Commit #24448 removed 4 workflow files but the agent-factory-status.mdx page still referenced them with dead links and broken status badges: - claude-token-optimizer - claude-token-usage-analyzer - copilot-token-optimizer - copilot-token-usage-analyzer Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Removes stale entries from the Agent Factory status documentation that referenced workflows deleted in PR #24448, eliminating dead source links and broken status badges.
Changes:
- Removed 4 workflow rows from the Agent Factory status table that pointed to deleted workflow docs and lock files.
- Eliminated dead GitHub Actions badge URLs associated with the removed workflows.
Show a summary per file
| File | Description |
|---|---|
| docs/src/content/docs/agent-factory-status.mdx | Prunes removed workflow rows so the status table no longer links to non-existent workflow docs/badges. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 1/1 changed files
- Comments generated: 0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Self-Healing Documentation Fixes
This PR was automatically created by the Daily Documentation Healer workflow.
Gaps Fixed
agent-factory-status.mdxstale workflow entries — Removed 4 rows from the Agent Factory status table that pointed to workflow files deleted in PR chore: remove token usage analyzers, optimizers, and shared deps #24448 (chore: remove token usage analyzers, optimizers, and shared deps). The deleted files were:claude-token-optimizer.md/.lock.ymlclaude-token-usage-analyzer.md/.lock.ymlcopilot-token-optimizer.md/.lock.ymlcopilot-token-usage-analyzer.md/.lock.ymlEach row contained a dead source-file link and a broken status-badge image pointing to non-existent workflows.
Root Cause
DDUw's Step 2 heuristic scans for "Features Removed" in merged PRs, but commit #24448 was prefixed
chore:— notfeat:,fix:, ordocs:— and removed only workflow definition files (.github/workflows/), not source code. DDUw's PR scanner does not scanchore:prefixed commits for documentation side-effects indocs/src/. Additionally, the removal PR landed at 06:52 UTC, just after DDUw's 06:00 UTC scan window closed, so even a broader heuristic would have missed it on this cycle.💡 DDUw Improvement Suggestions
DDUw Improvement Suggestions
Pattern: PRs that delete
.github/workflows/*.mdfiles leave stale rows inagent-factory-status.mdx, which is a manually maintained index of all workflow files. DDUw's current Step 2 analysis does not cross-reference deletions in.github/workflows/against the status page.Suggested new Step 2 sub-check: After listing merged commits, run:
git diff --name-only --diff-filter=D HEAD~1 HEAD -- '.github/workflows/*.md'For each deleted
.github/workflows/<name>.mdfile, searchdocs/src/content/docs/agent-factory-status.mdxfor a row referencing that file. If found, remove the row in the same PR. This is a mechanical, high-confidence fix requiring no judgment.Why DDUw missed this:
chore:prefix commits are not currently flagged for documentation side-effect review. Adding a file-deletion cross-reference check would catch this class of gap regardless of commit prefix.Related Issues
No open issue tracked this gap; it was identified by cross-referencing today's
chore:removal commit against the documentation status page.References:
Note
🔒 Integrity filter blocked 1 item
The following item were blocked because they don't meet the GitHub integrity level.
search_issues: has lower integrity than agent requires. The agent cannot read data with integrity below "approved".To allow these resources, lower
min-integrityin your GitHub frontmatter: